[Merged by Bors] - feat(ENat): (∀ a : ℕ, a ≤ m → a ≤ n) ↔ m ≤ n#23101
[Merged by Bors] - feat(ENat): (∀ a : ℕ, a ≤ m → a ≤ n) ↔ m ≤ n#23101YaelDillies wants to merge 7 commits intomasterfrom
(∀ a : ℕ, a ≤ m → a ≤ n) ↔ m ≤ n#23101Conversation
From my PhD (MiscYD)
PR summary b8f36bba7bImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
|
✌️ YaelDillies can now approve this pull request. To approve and merge a pull request, simply reply with |
| @[simp] | ||
| theorem coe_top_lt [OrderTop α] : (⊤ : α) < x ↔ x = ⊤ := by cases x <;> simp | ||
|
|
||
| lemma forall_gt_iff_eq_top : (∀ a : α, a < y) ↔ y = ⊤ := by |
There was a problem hiding this comment.
Hold on, why are these getting removed?
There was a problem hiding this comment.
Well, in #23101 (comment) you said you wanted y = ⊤ ↔ ∀ a : α, a < y to exist. Since (∀ a : α, a < y) ↔ y = ⊤ already existed then, I assumed you wanted me to replace it, so I have replaced it (and indeed I don't think we should have both).
Co-authored-by: Bhavik Mehta <bhavikmehta8@gmail.com>
|
As this PR is labelled bors merge |
From my PhD (MiscYD)
|
Pull request successfully merged into master. Build succeeded: |
(∀ a : ℕ, a ≤ m → a ≤ n) ↔ m ≤ n(∀ a : ℕ, a ≤ m → a ≤ n) ↔ m ≤ n
| @[deprecated (since := "2025-03-19")] alias forall_lt_iff_eq_top := eq_top_iff_forall_gt | ||
| @[deprecated (since := "2025-03-19")] alias forall_le_iff_eq_top := eq_top_iff_forall_ge |
There was a problem hiding this comment.
These have the wrong name. (Do we care?)
From my PhD (MiscYD)